home *** CD-ROM | disk | FTP | other *** search
/ Future Workshop / Future Workshop.iso / paintdrw / lightlib / language.z / CAVOWED.INI < prev    next >
Encoding:
INI File  |  1995-02-23  |  14.8 KB  |  388 lines

  1. [AssignMap]
  2. Background=Brush
  3. TextLimit=
  4. TextColor=Color
  5. Caption=
  6.  
  7. [StdProperties]
  8. FONT=FONTSYSTEM8,FONTMODERN8,FONTMODERN10,FONTMODERN12,FONTSWISS8,FONTSWISS10,FONTSWISS12,FONTSWISS14,FONTSWISS18,FONTSWISS24,FONTROMAN8,FONTROMAN10,FONTROMAN12,FONTROMAN14,FONTROMAN18,FONTROMAN24
  9. BRUSH=BRUSHWHITE,BRUSHBLACK,BRUSHDARK,BRUSHMEDIUM,BRUSHLIGHT,BRUSHHOLLOW,BRUSHCLEAR
  10. COLOR=COLORBLACK,COLORBLUE,COLORCYAN,COLORGREEN,COLORMAGENTA,COLORRED,COLORYELLOW,COLORWHITE
  11. LOGIC=Yes
  12. VIEWS=#FormView,#BrowseView
  13.  
  14.  
  15. [CODE]
  16. Activate=Method Activate(oE) class %\r\n\tsuper:Activate(oE)\r\n\t//Put your changes here\r\nreturn\r\n
  17. ButtonClick=Method ButtonClick(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tsuper:ButtonClick(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  18. ButtonDoubleClick=Method ButtonDoubleClick(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tsuper:ButtonDoubleClick(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  19. Close=Method Close(oE) class %\r\n\tsuper:Close(oE)\r\n\t//Put your changes here\r\nreturn\r\n
  20. Deactivate=Method Deactivate(oE) class %\r\n\tsuper:Deactivate(oE)\r\n\t//Put your changes here\r\nreturn\r\n
  21. Draw=Method Draw(oDO) class %\r\n\tsuper:Draw(oDO)\r\n\t//Put your changes here\r\nreturn\r\n
  22. EditChange=Method EditChange(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tlocal uValue\r\n\tsuper:EditChange(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  23. EditFocusChange=Method EditFocusChange(oEFCE) class %\r\n\tlocal oC := oEFCE:Control\r\n\tlocal lGotFocus := oEFCE:GotFocus\r\n\tsuper:EditFocusChange(oEFCE)\r\n\t//Put your changes here\r\nreturn\r\n
  24. EditScroll=Method EditScroll(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tlocal uValue\r\n\tsuper:EditScroll(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  25. Expose=Method Expose(oEE) class %\r\n\tlocal oBB := oEE:ExposedArea\r\n\tsuper:Expose(oEE)\r\n\t//Put your changes here\r\nreturn\r\n
  26. FocusChange=Method FocusChange(oFCE) class %\r\n\tlocal lGotFocus := oFCE:GotFocus\r\n\tsuper:FocusChange(oFCE)\r\n\t//Put your changes here\r\nreturn\r\n
  27. HelpRequest=Method HelpRequest(oHRE) class %\r\n\tsuper:HelpRequest(oHRE)\r\n\t//Put your changes here\r\nreturn\r\n
  28. HorizontalScroll=Method HorizontalScroll(oSE) class %\r\n\tsuper:HorizontalScroll(oSE)\r\n\t//Put your changes here\r\nreturn\r\n
  29. Keydown=Method Keydown(oKE) class %\r\n\tlocal cKC := if(IsNil(oKE:ASCIIChar),oKE:KeyCode,oKE:ASCIIChar)\r\n\tsuper:Keydown(oKE)\r\n\t//Put your changes here\r\nreturn\r\n
  30. Keyup=Method Keyup(oKE) class %\r\n\tlocal cKC := if(IsNil(oKE:ASCIIChar),oKE:KeyCode,oKE:ASCIIChar)\r\n\tsuper:Keyup(oKE)\r\n\t//Put your changes here\r\nreturn\r\n
  31. ListBoxClick=Method ListBoxClick(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tlocal uValue\r\n\tsuper:ListBoxClick(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  32. ListBoxSelect=Method ListBoxSelect(oCE) class %\r\n\tlocal oC := oCE:Control\r\n\tlocal uValue\r\n\tsuper:ListBoxSelect(oCE)\r\n\t//Put your changes here\r\nreturn\r\n
  33. MenuCommand=Method MenuCommand(oMCE) class %\r\n\tsuper:MenuCommand(oMCE)\r\n\t//Put your changes here\r\nreturn\r\n
  34. MenuInit=Method MenuInit(oMIE) class %\r\n\tsuper:MenuInit(oMIE)\r\n\t//Put your changes here\r\nreturn\r\n
  35. MenuSelect=Method MenuSelect(oMSE) class %\r\n\tsuper:MenuSelect(oMSE)\r\n\t//Put your changes here\r\nreturn\r\n
  36. MouseButtonDoubleClick=Method MouseButtonDoubleClick(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseButtonDoubleClick(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  37. MouseButtonDown=Method MouseButtonDown(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseButtonDown(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  38. MouseButtonUp=Method MouseButtonUp(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseButtonUp(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  39. MouseDrag=Method MouseDrag(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseDrag(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  40. MouseMove=Method MouseMove(oME) class %\r\n\tlocal nBID := oME:ButtonID\r\n\tsuper:MouseMove(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  41. Move=Method Move(oME) class %\r\n\tsuper:Move(oME)\r\n\t//Put your changes here\r\nreturn\r\n
  42. Notify=Method Notify(kNotify,uDescription) class %\r\nLocal flag as Usual\r\n\tflag := super:Notify(kNotify,uDescription)\r\n\t//Put your changes here\r\nreturn flag\r\n
  43. PreValidate=Method PreValidate() class %\r\n\tsuper:PreValidate()\r\n\t//Put your changes here\r\nreturn\r\n
  44. QueryClose=Method QueryClose(oE) class %\r\n\tsuper:QueryClose(oE)\r\n\t//Put your changes here\r\nreturn\r\n
  45. Resize=Method Resize(oRSE) class %\r\n\tsuper:Resize(oRSE)\r\n\t//Put your changes here\r\nreturn\r\n
  46. Sound= Method Toto(oRSE) Class %\r\n
  47. VerticalScroll=Method VerticalScroll(oSE) class %\r\n\tsuper:VerticalScroll(oSE)\r\n\t//Put your changes here\r\nreturn\r\n
  48.  
  49.  
  50. [FORM]
  51. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  52. assign02=Caption,HyperLabel(,lstring,,)
  53. assign03=Description,HyperLabel(,,string,)
  54. assign04=Help Context,HyperLabel(,,,string)
  55.  
  56. Method50=Activate Event,Activate(CODE:Activate)
  57. Method51=ButtonClick Event,ButtonClick(CODE:ButtonClick)
  58. Method52=ButtonDoubleClick Event,ButtonDoubleClick(CODE:ButtonDoubleClick)
  59. Method53=Close Event,Close(CODE:Close)
  60. Method54=Deactivate Event,Deactivate(CODE:Deactivate)
  61. Method55=Draw Event,Draw(CODE:Draw)
  62. Method56=EditChange Event,EditChange(CODE:EditChange)
  63. Method57=EditFocusChange Event,EditFocusChange(CODE:EditFocusChange)
  64. Method58=EditScroll Event,EditScroll(CODE:EditScroll)
  65. Method59=Expose Event,Expose(CODE:Expose)
  66. Method60=FocusChange Event,FocusChange(CODE:FocusChange)
  67. Method61=HelpRequest Event,HelpRequest(CODE:HelpRequest)
  68. Method62=HorizontalScroll Event,HorizontalScroll(CODE:HorizontalScroll)
  69. Method63=Keydown Event,Keydown(CODE:Keydown)
  70. Method64=Keyup Event,Keyup(CODE:Keyup)
  71. Method65=ListBoxClick Event,ListBoxClick(CODE:ListBoxClick)
  72. Method66=ListBoxSelect Event,Show(CODE:ListBoxSelect)
  73. Method67=MenuCommand Event,MenuCommand(CODE:MenuCommand)
  74. Method68=MenuInit Event,MenuInit(CODE:MenuInit)
  75. Method69=MenuSelect Event,MenuSelect(CODE:MenuSelect)
  76. Method70=MouseButtonDoubleClick Event,MouseButtonDoubleClick(CODE:MouseButtonDoubleClick)
  77. Method71=MouseButtonDown Event,MouseButtonDown(CODE:MouseButtonDown)
  78. Method72=MouseButtonUp Event,MouseButtonUp(CODE:MouseButtonUp)
  79. Method73=MouseDrag Event,MouseDrag(CODE:MouseDrag)
  80. Method74=MouseMove Event,MouseMove(CODE:MouseMove)
  81. Method75=Move Event,Move(CODE:Move)
  82. Method77=QueryClose Event,QueryClose(CODE:QueryClose)
  83. Method78=Resize Event,Resize(CODE:Resize)
  84. Method79=VerticalScroll Event,VerticalScroll(CODE:VerticalScroll)
  85.  
  86.  
  87. [FORM:DATAWINDOW]
  88. ContTitle=Data Window
  89. text=DataWindow Caption
  90. InitMethod=DATAWINDOW(oWindow,iCtlID,oServer)
  91. Name=MyDataWindow
  92. Size=420,320 
  93. DialogTemplate=1
  94. Position=5,5 
  95. Style=WS_BORDER|WS_CHILD
  96. Assign05=Icon Name,Icon(CLASS:ICON)
  97. Assign06=Accelerator Table,Accelerator(CLASS:Accelerator)
  98. Assign100=Menu,Menu(CLASS:Menu)
  99. Assign07=Help File Name,HelpDisplay(string)
  100. Method10=View As,ViewAs(VIEWS)
  101. Method11=Data Server,Use(CLASS:DBSERVER)
  102. Method13=Font,Font(FONT)
  103. Method80=Notify Event,Notify(CODE:Notify)
  104. Method76=PreValidate Event,PreValidate(CODE:PreValidate)
  105.  
  106. [FORM:SHELLWINDOW]
  107. ContTitle=Shell Window
  108. text=ShellWindow Caption
  109. InitMethod = SHELLWINDOW(oParent)
  110. Name=TheShellWindow
  111. Size=400,300 
  112. Position=5,5 
  113. Style=WS_OVERLAPPEDWINDOW
  114. Assign09=Icon Name,Icon(CLASS:ICON)
  115. Assign10=Mouse Pointer,Pointer(CLASS:POINTER)
  116. Assign100=Menu,Menu(CLASS:Menu)
  117. Assign11=Help File Name,HelpDisplay(string)
  118.  
  119. [FORM:DIALOGWINDOW]
  120. ContTitle=Dialog Window
  121. DialogTemplate=1
  122. text=Dialog Caption
  123. InitMethod = DialogWindow(oParent)
  124. Name=TheDialog
  125. Size=400,240 
  126. Position=5,5 
  127. Style=DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  128. ExStyle=WS_EX_DLGMODALFRAME
  129.  
  130. method13=Font,Font(FONT)
  131. Method14=Modeless,Modeless(LOGIC)
  132. Assign14=Background Color,Background(COLOR)
  133. Assign15=Mouse Pointer,Pointer(CLASS:POINTER)
  134. Assign16=Help File Name,HelpDisplay(string)
  135.  
  136. [CONTROL]
  137.  
  138. [CONTROL:SUBDATAWINDOW]
  139. ContTitle=Sub-Data Window
  140. ClassName=__PSBDWN__ 
  141. Name=Sub_Form
  142. Size=240,140 
  143. Style=WS_CHILD|WS_BORDER  
  144. Method1=Relation String,RelationString(string)
  145. Method2=Order,Order(string)
  146.  
  147. [CONTROL:FIXEDICON]
  148. ContTitle=Fixed Icon
  149. ClassName=static 
  150. Name=theFixedIcon
  151. Size=40,40 
  152. Style=WS_CHILD|SS_ICON|WS_BORDER   
  153. InitMethod = FIXEDICON(PARENT,ID)
  154. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  155. assign02=Caption,HyperLabel(,lstring,,)
  156. assign03=Description,HyperLabel(,,string,)
  157. assign04=Help Context,HyperLabel(,,,string)
  158. Assign05=Background Color,Background(COLOR)
  159.  
  160.  
  161. [CONTROL:SCROLLBAR]
  162. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  163. assign02=Caption,HyperLabel(,lstring,,)
  164. assign03=Description,HyperLabel(,,string,)
  165. assign04=Help Context,HyperLabel(,,,string)
  166.  
  167. Assign05=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  168. assign06=Min Value,Range(numeric,)
  169. assign07=Max Value,Range(,numeric)
  170.  
  171. [CONTROL:SCROLLBAR:HORIZONTALSCROLLBAR]
  172. ContTitle=Horizontal Scroll Bar
  173. ClassName=scrollbar 
  174. Name=theHorzScroll
  175. Size=140,20 
  176. Style=WS_CHILD|SBS_HORZ  
  177. InitMethod=HorizontalScrollBar(PARENT,ID)
  178.  
  179. [CONTROL:SCROLLBAR:VERTICALSCROLLBAR]
  180. ContTitle=Vertical Scroll Bar
  181. ClassName=scrollbar 
  182. Name=theVertScroll
  183. Size=20,140 
  184. Style=WS_CHILD|SBS_VERT  
  185. InitMethod=VerticalScrollBar(PARENT,ID)
  186.  
  187. [CONTROL:TEXTCONTROL]
  188. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  189. assign02=Caption,HyperLabel(,lstring,,)
  190. assign03=Description,HyperLabel(,,string,)
  191. assign04=Help Context,HyperLabel(,,,string)
  192. method13=Font,Font(FONT)
  193.  
  194. [CONTROL:TEXTCONTROL:EDIT]
  195. Assign05=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  196. Assign06=Text Limit,TextLimit(numeric)
  197. Assign91=Text Color,TextColor(COLOR)
  198. Assign92=Background Color,Background(COLOR)
  199.  
  200. [CONTROL:TEXTCONTROL:EDIT:MULTILINEEDIT]
  201. ContTitle=Multi-Line Edit
  202. ClassName= edit
  203. Name=theMultiLineEdit
  204. Size=60,40 
  205. Style=WS_CHILD|ES_MULTILINE|WS_TABSTOP|WS_BORDER  
  206. InitMethod = MultiLineEdit(PARENT,ID)
  207.  
  208. [CONTROL:TEXTCONTROL:EDIT:SINGLELINEEDIT]
  209. ContTitle=Single-Line Edit
  210. ClassName= edit
  211. Name=theSingleLineEdit
  212. Size=40,20 
  213. Style=WS_CHILD|WS_TABSTOP|WS_BORDER|ES_AUTOHSCROLL 
  214. InitMethod = SingleLineEdit(PARENT,ID)
  215. assign40=Block,Block(string)
  216. assign41=Block Owner,BlockOwner(string)
  217.      
  218. [CONTROL:TEXTCONTROL:BASELISTBOX]
  219. Method2=Fill Using,FillUsing( )
  220. Assign05=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  221. Assign91=Text Color,TextColor(COLOR)
  222. Assign92=Background Color,Background(COLOR)
  223.  
  224. [CONTROL:TEXTCONTROL:BASELISTBOX:LISTBOX]
  225. ContTitle=List Box
  226. ClassName=listbox 
  227. Name=theListBox
  228. Size=80,80 
  229. Style=WS_TABSTOP|WS_CHILD|LBS_NOTIFY|WS_VSCROLL|WS_BORDER|LBS_SORT
  230. InitMethod = ListBox(PARENT,ID)
  231.  
  232. [CONTROL:TEXTCONTROL:BASELISTBOX:LISTBOX:COMBOBOX]
  233. ContTitle=Combo Box
  234. ClassName=combobox 
  235. Name=theComboBox
  236. Size=80,80 
  237. Style=WS_TABSTOP|WS_CHILD|CBS_DROPDOWN|WS_VSCROLL|CBS_SORT
  238. InitMethod = combobox(PARENT,ID)
  239.  
  240. [CONTROL:TEXTCONTROL:BUTTON]
  241.  
  242. [CONTROL:TEXTCONTROL:BUTTON:CHECKBOX]
  243. ContTitle=Check Box
  244. ClassName= button
  245. Name=theCheckBox
  246. Text=CheckBox
  247. Size=120,18 
  248. Style=WS_TABSTOP|WS_CHILD|BS_AUTOCHECKBOX  
  249. InitMethod=CheckBox(PARENT,ID)
  250. Assign05=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  251. Assign91=Text Color,TextColor(COLOR)
  252. Assign92=Background Color,Background(COLOR)
  253.  
  254. [CONTROL:TEXTCONTROL:BUTTON:PUSHBUTTON]
  255. ContTitle=Push Button
  256. Type=CommandControl
  257. ClassName= button
  258. Name=PushButton
  259. text=Push
  260. Size=80,22 
  261. Style=WS_CHILD|WS_TABSTOP  
  262. InitMethod = PushButton(PARENT,ID)
  263. Event01=Click Event,MyBtnName( )
  264.  
  265. [CONTROL:TEXTCONTROL:BUTTON:RADIOBUTTON]
  266. ContTitle=Radio Button
  267. Type=CommandControl
  268. ClassName= button
  269. Name=theRadioButton
  270. text=RadioButton
  271. Size=120,18 
  272. Style=WS_CHILD|WS_TABSTOP|BS_AUTORADIOBUTTON  
  273. InitMethod = RadioButton(PARENT,ID)
  274. Method20=Group Value,Value(numeric)
  275. Assign91=Text Color,TextColor(COLOR)
  276. Assign92=Background Color,Background(COLOR)
  277.  
  278. [CONTROL:TEXTCONTROL:FIXEDTEXT]
  279. ContTitle=Fixed Text
  280. InitMethod=FixedText(PARENT,ID)
  281. ClassName=Static
  282. text=Fixed Text
  283. Name=theFixedText
  284. Size=80,20 
  285. Style=WS_CHILD  
  286. Assign91=Text Color,TextColor(COLOR)
  287. Assign92=Background Color,Background(COLOR)
  288.  
  289. [CONTROL:TEXTCONTROL:GROUPBOX]
  290. ContTitle=Group Box
  291. ClassName=Button
  292. Text=GroupBox
  293. Name=theGroupBox
  294. Size=100,80
  295. Style=WS_CHILD|BS_GROUPBOX|WS_GROUP  
  296. InitMethod = GroupBox(PARENT,ID)
  297. Assign91=Text Color,TextColor(COLOR)
  298. Assign92=Background Color,Background(COLOR)
  299.  
  300. [CONTROL:TEXTCONTROL:GROUPBOX:RADIOBUTTONGROUP]
  301. ContTitle=Radio Button Group
  302. ClassName=Button
  303. Text=RadioButtonGrp
  304. Name=theRadioButtonGroup
  305. Size=100,80
  306. Style=WS_CHILD|BS_GROUPBOX|WS_GROUP  
  307. InitMethod=RadioButtonGroup(PARENT,ID)
  308. Assign01=Field Spec,FieldSpec(CLASS:FIELDSPEC)
  309.  
  310. ; These definitions are used for Light Lib Objects inside the painter
  311. [FORM:LIGHTLIBDATAWINDOW]
  312. ContTitle=Light Lib Data Window
  313. text=LightLibDataWindow Caption
  314. InitMethod=LIGHTLIBDATAWINDOW(oWindow,iCtlID,oServer)
  315. Name=TheLightLibDataWindow
  316. Size=420,320
  317. DialogTemplate=1
  318. Position=5,5
  319. Style=WS_BORDER|WS_CHILD
  320. Assign05=Icon Name,Icon(CLASS:ICON)
  321. Assign06=Accelerator Table,Accelerator(CLASS:Accelerator)
  322. Assign100=Menu,Menu(CLASS:Menu)
  323. Assign07=Help File Name,HelpDisplay(string)
  324. Method10=View As,ViewAs(VIEWS)
  325. Method11=Data Server,Use(CLASS:DBSERVER)
  326. Method13=Font,Font(FONT)
  327. Method80=Notify Event,Notify(CODE:Notify)
  328. Method76=PreValidate Event,PreValidate(CODE:PreValidate)
  329.  
  330. [CONTROL:IMAGEWINDOWCONTROL]
  331. ContTitle=ImageControl
  332. floatbar=llivowe1
  333. ClassName=Static
  334. Name=TheImageControl
  335. Size=200,200
  336. Style=WS_CHILD|SS_ICON|WS_BORDER
  337. InitMethod=ImageWindowControl(PARENT,ID)
  338. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  339. assign02=Caption,HyperLabel(,lstring,,)
  340. assign03=Description,HyperLabel(,,string,)
  341. assign04=Help Context,HyperLabel(,,,string)
  342. Assign05=Background Color,Background(COLOR)
  343. Method10=Image FieldName, RegisterAsLightLibDataWindowClient(STRING)
  344.  
  345.  
  346. [CONTROL:TEXTCONTROL:BUTTON:SOUNDPLAYWINDOWCONTROL]
  347. ContTitle=Push Button
  348. floatbar=llmvowe1
  349. Type=CommandControl
  350. ClassName= button
  351. Name=TheSoundPlayControl
  352. text=PlaySound
  353. Size=80,22
  354. Style=WS_CHILD|WS_TABSTOP
  355. InitMethod = SoundPlayWindowControl(PARENT,ID)
  356. Method10=Sound FieldName, RegisterAsLightLibDataWindowClient(STRING)
  357.  
  358. [CONTROL:TEXTCONTROL:BUTTON:SOUNDRECORDWINDOWCONTROL]
  359. ContTitle=Push Button
  360. floatbar=llmvowe2
  361. Type=CommandControl
  362. ClassName= button
  363. Name=TheSoundRecordControl
  364. text=RecordSound
  365. Size=80,22
  366. Style=WS_CHILD|WS_TABSTOP
  367. InitMethod = SoundRecordWindowControl(PARENT,ID)
  368. Method10=Sound FieldName, RegisterAsLightLibDataWindowClient(STRING)
  369.  
  370. [CONTROL:VIDEOPLAYWINDOWCONTROL]
  371. ContTitle=VideoControl
  372. floatbar=llmvowe3
  373. ClassName=Static
  374. Name=TheVideoControl
  375. Size=163,187
  376. Style=WS_CHILD|SS_ICON|WS_BORDER
  377. InitMethod=VideoPlayWindowControl(PARENT,ID)
  378. assign01=Name,HyperLabel(%Name%,%Caption%,,)
  379. assign02=Caption,HyperLabel(,lstring,,)
  380. assign03=Description,HyperLabel(,,string,)
  381. assign04=Help Context,HyperLabel(,,,string)
  382. Assign05=Background Color,Background(COLOR)
  383. Method10=Video FieldName, RegisterAsLightLibDataWindowClient(STRING)
  384.  
  385.  
  386.  
  387. ; End of Light Lib Definitions
  388.